#fastSearch {
    display: none;
    position: fixed;
    left: 50%;
    top: calc(5vw + 40px);
    transform: translateX(-50%);
    z-index: 4;
    width: 650px;
    background-color: #f2f2f2;
    border: 1px solid #000;
    border-radius: 4px;
    overflow: hidden;
 
    input {
        padding: 10px;
        width: 100%;
        height: 30px;
        line-height: 30px;
        border: none;
        outline: none;
        background-color: #f2f2f2;
        color: #000;
    }
 
    #searchResults {
        display: none;
        overflow-y: auto;
        max-height: 60vh;
        padding-left: 0;
        margin: 0;
        border-top: 1px dashed #000;
 
        .search-highlight {
            color: #FF9500;
            font-weight: 600;
        }
 
        li {
            list-style: none;
            margin: 0;
 
            a {
                text-decoration: none;
                color: inherit;
                padding: 6px 10px;
                display: block;
                letter-spacing: .04em;
            }
 
            a:hover,
            a:focus {
                background-color: #ffffff;
            }
 
            .title {
                font-size: 1.2rem;
                font-weight: 600;
            }
        }
 
        li.noSearchResult {
            text-align: center;
            margin: 8px 0;
            color: #f2f2f2;
        }
    }
}